home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 002 / dbug / doinstall.sh < prev    next >
Text File  |  1995-03-17  |  328b  |  16 lines

  1.  
  2. # Warning - first line left blank for sh/csh/ksh compatibility.  Do not
  3. # remove it.  fnf@Unisoft
  4.  
  5. # doinstall.sh --- figure out environment and do recursive make with
  6. # appropriate pathnames.  Works under SV or BSD.
  7.  
  8. if [ -r /usr/include/search.h ]
  9. then
  10.     # System V
  11.     $* LLIB=/usr/lib
  12. else
  13.     # 4.2 BSD
  14.     $* LLIB=/usr/lib/lint
  15. fi
  16.